home *** CD-ROM | disk | FTP | other *** search
/ Old Testament Foundatiosn with Philip Yancey / Old Testament Foundatiosn with Philip Yancey - Disc 1.iso / pc / data / notes.dir / 00041.ls < prev    next >
Encoding:
Text File  |  1996-09-06  |  448 b   |  23 lines

  1. on mouseDown
  2.   hilite line the mouseLine of field "noteslist"
  3. end
  4.  
  5. on mouseUp
  6.   global gOldNoteName, gOpenNote, gOverSize
  7.   set gOldNoteName to line the mouseLine of field "noteslist"
  8.   if gOldNoteName = EMPTY then
  9.     nothing()
  10.   else
  11.     readNote()
  12.     if gOverSize then
  13.       pupSprites(1, 48, 0)
  14.       set gOpenNote to 0
  15.       go("bigsize")
  16.     else
  17.       set gOpenNote to 1
  18.       pupSprites(1, 48, 0)
  19.       go("notes")
  20.     end if
  21.   end if
  22. end
  23.